home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _E7FEDE209CE74936900A56FD7BDA8913 < prev    next >
Encoding:
Text File  |  2006-08-04  |  2.0 KB  |  65 lines

  1. from JascApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': 'Jasc Software, Inc.',
  6.         'Copyright': 'Copyright (c) 2004 Jasc Software, Inc.  All rights reserved.',
  7.         'Description': '',
  8.         'Host': 'Paint Shop Pro 9',
  9.         'Host Version': '9.00'
  10.         }
  11.  
  12. def MIPTemplate_Print():
  13.     return {
  14.         'PrintingOptions': {
  15.             'PrinterName': None, 
  16.             'Orientation': 0, 
  17.             'NumCopies': 1, 
  18.             'Negative': False, 
  19.             'Background': False, 
  20.             'BackgroundColor': (255,255,255), 
  21.             'OutputOption': 0, 
  22.             'CornerCropmarks': False, 
  23.             'CenterCropmarks': False, 
  24.             'RegistrationMarks': False, 
  25.             'ImageLabels': False, 
  26.             'Header': False, 
  27.             'HeaderText': '', 
  28.             'Footer': False, 
  29.             'FooterText': '', 
  30.             'CMYKLabels': False, 
  31.             'PrintQuality': 200, 
  32.             'PaperSize': 1
  33.             }, 
  34.         'MIPCmdFile': '', 
  35.         'TemplateMetric': False, 
  36.         'PageDimensions': (8.5,11), 
  37.         'TemplateCategory': 'Avery', 
  38.         'TemplateDescription': 'CD-etiketten', 
  39.         'Template': [{
  40.             'CellPosition': (1.9425,0.755), 
  41.             'CellSize': (4.49,4.49), 
  42.             'ImagePlacement': 2, 
  43.             'EllipticalCell': True, 
  44.             'ImagePath': '', 
  45.             'RotationAngle': 0, 
  46.             'ImagePosition': (0,0), 
  47.             'ImageSize': (0,0)
  48.             },{
  49.             'CellPosition': (1.9425,5.755), 
  50.             'CellSize': (4.49,4.49), 
  51.             'ImagePlacement': 2, 
  52.             'EllipticalCell': True, 
  53.             'ImagePath': '', 
  54.             'RotationAngle': 0, 
  55.             'ImagePosition': (0,0), 
  56.             'ImageSize': (0,0)
  57.             }], 
  58.         'TextFieldList': []
  59.         }
  60.  
  61. def Do(Environment):
  62.     # Print_LOCALIZED
  63.     App.Do( Environment, 'Print',         MIPTemplate_Print())
  64.  
  65.